home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / tool / extdrv / src / disk.h < prev    next >
C/C++ Source or Header  |  1994-11-16  |  674b  |  43 lines

  1. struct partent {
  2.     u_char boot;
  3.     u_char sig;
  4.     u_long offset;
  5.     u_long length;
  6.     u_char passwd[6];
  7.     u_char type[16];
  8.     u_char name[16];
  9. };
  10.  
  11. struct partinfo {
  12.     long sig;
  13.     u_long offset, length;
  14.     u_char name[17];
  15.     u_char type[17];
  16.     u_char passwd[7];
  17. };
  18.  
  19. struct bootsector {
  20.     u_char jump[3];
  21.     u_char version[8];
  22.     u_short sectsiz;
  23.     u_char cluster;
  24.     u_short n_reserv;
  25.     u_char n_fat;
  26.     u_short n_dir;
  27.     u_short n_sect;
  28.     u_char media;
  29.     u_short fatsiz;
  30.     u_short trksiz;
  31.     u_short n_head;
  32.     u_long n_hidden;
  33.     u_long hugesect;
  34.     u_char drive;
  35.     u_char reserv1;
  36.     u_char boot;
  37.     u_long volume;
  38.     u_char label[11];
  39.     u_char type[8];
  40. };
  41.  
  42. #define UNIT_ATN    0x06
  43.